The <blockquote> tag shows a part that is taken from another source.
Browsers often space in <blockquote> elements (look at the example below on how to delete the spacing).
The <blockquote> HTML part means that the text it contains is a longer quote. Normally, this is shown by making the text indented (see Notes for how to change it). You can give a link to where the quote is from using the "<cite>" feature. Also, you can use <cite> element to show text about its source.
HTML Example
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset ="UTF-8">
<!--This is our webpage it's our very first webpage-->
<title>Levoric | HTML Fundamentle Tutorial</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--Write your content here levoriclearn top degree online and program-->
<blockquote cite="https://www.example.com/article123">
<h1>What is blockquote</h1>
Quoted text goes here.
</blockquote>
<!--Write your content here levoriclearn top degree online and program-->
</body>
</html>